github.com/refraction-networking/utls.Conn.rawInput (field)
13 uses
github.com/refraction-networking/utls (current package)
conn.go#L106: rawInput bytes.Buffer // raw input, starting with a record header
conn.go#L587: copy(err.RecordHeader[:], c.rawInput.Bytes())
conn.go#L634: if err == io.ErrUnexpectedEOF && c.rawInput.Len() == 0 {
conn.go#L642: hdr := c.rawInput.Bytes()[:recordHeaderLen]
conn.go#L689: record := c.rawInput.Next(recordHeaderLen + n)
conn.go#L824: if c.rawInput.Len() >= n {
conn.go#L827: needs := n - c.rawInput.Len()
conn.go#L831: c.rawInput.Grow(needs + bytes.MinRead)
conn.go#L832: _, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
conn.go#L1414: if n != 0 && c.input.Len() == 0 && c.rawInput.Len() > 0 &&
conn.go#L1415: recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {
u_conn.go#L894: if n != 0 && c.input.Len() == 0 && c.rawInput.Len() > 0 &&
u_conn.go#L895: recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |